home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CICA 1995 August
/
CICA - The Ultimate Collection of Shareware for Windows (Disc 2) (August 1995).iso
/
_bbs
/
rbbstool
/
all.bat
< prev
next >
Wrap
DOS Batch File
|
1995-07-13
|
900b
|
39 lines
rem this is where the actual files live
set cdrom=n:
rem this is where you want your index files (full path, with drive)
set output=n:\_bbs\rbbs
REM I set this globally, in ..\all.bat
REM To run this one batch file, change it here also.
if .%in_type% == . goto not_set
goto set
:not_set
echo in_type not set
goto end
:set
rem you shouldn't have to change anything below this.
REM This is the foreign language stuff. the default extension is
REM ".txt"
if .%in_language% == . goto not_set2
goto set2
:not_set2
set in_language=txt
:set2
del logfile
del ..\logfile
echo y | del %output%\*.*
%cdrom%\_bbs\each_dir 1 \_bbs\dirs.%in_language% doit2
%cdrom%\_bbs\each_dir 1 \_bbs\dirs.%in_language% doit3
type makefidx.1 > makefidx.cfg
%cdrom%\_bbs\each_dir 1 \_bbs\dirs.%in_language% doit4
type makefidx.2 >> makefidx.cfg
call makeffs
:end